home *** CD-ROM | disk | FTP | other *** search
- on beginmyconfig x, y, w, h
- global myconfig
- if objectp(myconfig) then
- forget(myconfig)
- end if
- set horzorigin to the stageLeft + x
- set vertorigin to the stageTop + y
- set mywindowrect to rect(horzorigin, vertorigin, horzorigin + w, vertorigin + h)
- set myconfig to window "CONFIG"
- set the rect of myconfig to mywindowrect
- set the fileName of myconfig to "CONFIG"
- set the titleVisible of myconfig to 1
- set the windowType of myconfig to 4
- end
-
- on stopmyconfig
- finishmyconfig()
- end
-
- on finishmyconfig
- global myconfig
- if objectp(myconfig) then
- forget(myconfig)
- end if
- end
-